import Runloop from '@runloop/api-client';
const client = new Runloop({
bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted
});
const axonListView = await client.axons.list();
console.log(axonListView.axons);{
"axons": [
{
"id": "<string>",
"created_at_ms": 123,
"name": "<string>"
}
]
}[Beta] List all active axons.
import Runloop from '@runloop/api-client';
const client = new Runloop({
bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted
});
const axonListView = await client.axons.list();
console.log(axonListView.axons);{
"axons": [
{
"id": "<string>",
"created_at_ms": 123,
"name": "<string>"
}
]
}Was this page helpful?